
SHELL = /bin/sh

NAME=progressReport-Fall10

all: $(NAME).pdf

LATEX_FILES := $(NAME).tex \
	accelerator.tex \
	ascem.tex \
	astro-cac.tex \
	astro-noncac.tex \
	awards.tex \
	collabSummary.tex \
	coverpage.tex \
	edgeMaps.tex \
	execSummary.tex \
	fusion-panalysis.tex \
	fusion-poincare.tex \
	groundwater.tex \
	hybridVR.tex \
	nucsci.tex \
	outreachService.tex \
	parallelR-george.tex \
	ParallelMS.tex \
	pubs.tex \
	remoteCollab.tex \
	resources.tex \
	streamlines.tex \
	uncertainty.tex \
	visit-multires.tex \
	visit-releases.tex \
	visit-selections.tex \
	visusStuff.tex \
	$(NAME).bib

$(NAME).pdf: $(LATEX_FILES)
	pdflatex $(NAME)
	bibtex $(NAME)
	pdflatex $(NAME)
	pdflatex $(NAME)

clean:
	if (rm -f *.log *.aux *.bbl *.blg *.toc *.dvi *.flc *~ $(NAME).pdf) then :; fi

